Guide for migration from 0.0.1-beta.3 to 0.0.1-beta.4
Changes
- Implemented dynamic metadata for nested routing.
- Dev build and dev serve configurations for a smoother development experience.
metadataFunction
is deprecated and has been renamed tosetMetaData
.- ESLint security rules for improved code security.
- Security audit conducted on all packages.
- Removed Babel packages already included in the Babel preset.
- Updated router version to support nested routing.
- Redundant Babel packages removed, reducing dependencies.
- Updated documentation to reflect the latest changes.
Changes required to migrate
metadataFunction
is deprecated and has been renamed tosetMetaData
. You need to change the name of metaDataFunction to setMetaData when defining it in the container.
src/js/containers/Home/Home.js
import React from "react"
function HomePage() {
return <div>Homepage</div>
}
const setMetaData = (apiResponse) => {
return [
<title>Home Page</title>,
<meta name="description" content="Free Web tutorials"/>
]
}
HomePage.setMetaData = setMetaData
export default HomePage
- The Dev build and Dev serve configurations enhance the development experience. The devBuild and devServe commands function similarly to build and serve, respectively, with the distinction that they locally serve your assets during development when they are not stored on a CDN. To be able to use devBuild and devServe, add this command to your package.json file.
package.json
{
"scripts": {
"start": "catalyst start",
"build": "catalyst build",
"serve": "catalyst serve",
"devBuild": "catalyst devBuild",
"devServe": "catalyst devServe"
}
}
- ESLint support has been added to the project with basic configuration. Please create a .eslintrc and .eslintignore file inside your project directory. Then, include the ESLint command in the "scripts" section and the necessary packages in the "devDependencies" section of your package.json file. Here's an example:
.eslintrc
{
"rules": {
"react-hooks/exhaustive-deps": "error" // Checks effect dependencies
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"plugins": [
"react",
"react-hooks"
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
}
}
**/build/*
package.json
"scripts: {
"lint": "eslint .",
}
"devDependencies": {
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0"
},
- Nested routing support has been added to the router. To enable nested routing support, please update your router package to the specified version below and replace your src/js/routes/utils.js with below code according to your template.
package.json
"dependencies": {
"@tata1mg/router": "^0.0.1-beta.1"
}
None template
src/js/routes/utils.js
import React from "react"
import { RouterDataProvider, MetaTag } from "@tata1mg/router"
import App from "@containers/App"
import routes from "./index.js"
/**
* Making the routes array compatible with the format accepted by createBrowserRouter
* API on the client side
* https://reactrouter.com/en/main/routers/create-browser-router
*/
export const preparedRoutes = ({ routerInitialState }) => {
const getPreparedRoutes = (routes) => {
return routes.map((route, index) => {
const Component = route.component
const routeToRender = {
...route,
element: <Component key={index} />,
}
if (route.children) {
routeToRender.children = getPreparedRoutes(route.children)
}
return routeToRender
})
}
return [
{
element: (
<RouterDataProvider config={{}} initialState={routerInitialState}>
<MetaTag />
<App />
</RouterDataProvider>
),
children: getPreparedRoutes(routes),
},
]
}
export const getRoutes = () => {
return routes
}
Redux/RTK template
src/js/routes/utils.js
import React from "react"
import { RouterDataProvider, MetaTag } from "@tata1mg/router"
import App from "@containers/App"
import routes from "./index.js"
/**
* Making the routes array compatible with the format accepted by createBrowserRouter
* API on the client side
* https://reactrouter.com/en/main/routers/create-browser-router
*/
export const preparedRoutes = ({ store, routerInitialState }) => {
const getPreparedRoutes = (routes) => {
return routes.map((route, index) => {
const Component = route.component
const routeToRender = {
...route,
element: <Component key={index} />,
}
if (route.children) {
routeToRender.children = getPreparedRoutes(route.children)
}
return routeToRender
})
}
return [
{
element: (
<RouterDataProvider config={{}} initialState={routerInitialState} fetcherArgs={{ store }}>
<MetaTag />
<App />
</RouterDataProvider>
),
children: getPreparedRoutes(routes),
},
]
}
export const getRoutes = () => {
return routes
}